aff9eb4c337385029c00963c82fc91c443361087,Mage.Sets/src/mage/sets/fifthdawn/Acquire.java,AcquireEffect,apply,#Game#Ability#,64
Before Change
you.searchLibrary(target, game, opponent.getId());
Card targetCard = game.getCard(target.getFirstTarget());
if (targetCard != null) {
applied = you.putOntoBattlefieldWithInfo(targetCard, game, Zone.LIBRARY, source.getSourceId());
}
opponent.shuffleLibrary(game);
}
After Change
controller.searchLibrary(target, game, opponent.getId());
Card targetCard = game.getCard(target.getFirstTarget());
if (targetCard != null) {
controller.putOntoBattlefieldWithInfo(targetCard, game, Zone.LIBRARY, source.getSourceId());
}
opponent.shuffleLibrary(game);
return true;